for i = 1,25 do local Weld = Instance.new("Weld",game.Workspace) local Part0 = Instance.new("Part",Weld) Part0.TopSurface = Enum.SurfaceType.Smooth Part0.BottomSurface = Enum.SurfaceType.Smooth Part0.Size = Vector3.new(4,4,4) Part0.BrickColor = BrickColor.new("Brown") Part0.Material = Enum.Material.WoodPlanks Part0.Position = Vector3.new(math.random(-50,50) * Part0.Size.X,50,math.random(-50,50) * Part0.Size.Z) Part1 = Part0:Clone() Part1.Transparency = 1 Part1.Parent = Weld local Sound = Instance.new("Sound",Part0) Sound.SoundId = "rbxasset://sounds/snap.wav" Sound.PlayOnRemove = true Weld.Part0 = Part0 Weld.Part1 = Part1 end